home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Especial Multimedia
/
Especial Multimedia.iso
/
Multimed
/
Prg
/
IMAGELIB.ZIP
/
MIMAGE.ZIP
/
VIEWPH.DPR
< prev
next >
Wrap
Text File
|
1995-07-24
|
453b
|
21 lines
program Viewph;
uses
Forms,
Uimage in 'UIMAGE.PAS' {Form1},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox},
U_p_size in 'U_P_SIZE.PAS' {Printersize};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TPrintersize, Printersize);
Application.Run;
end.